home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / univspl / form.h < prev    next >
C/C++ Source or Header  |  1999-02-02  |  1KB  |  35 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef fft_bcb_guiH
  3. #define fft_bcb_guiH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TMainForm : public TForm
  11. {
  12. __published:    // IDE-managed Components
  13.     TButton *Compute;
  14.     TEdit *FFTSizeEdit;
  15.     TEdit *SRateEdit;
  16.     TEdit *FreqEdit;
  17.     TLabel *Label1;
  18.     TLabel *Label2;
  19.     TLabel *Label3;
  20.     TLabel *Label4;
  21.     TLabel *FoundFreqLbl;
  22.     TButton *Button1;
  23.     TButton *ViewBtn;
  24.     void __fastcall ComputeClick(TObject *Sender);
  25.     void __fastcall Button1Click(TObject *Sender);
  26.     void __fastcall ViewBtnClick(TObject *Sender);
  27. private:    // User declarations
  28. public:        // User declarations
  29.     __fastcall TMainForm(TComponent* Owner);
  30. };
  31. //---------------------------------------------------------------------------
  32. extern TMainForm *MainForm;
  33. //---------------------------------------------------------------------------
  34. #endif
  35.